home *** CD-ROM | disk | FTP | other *** search
- //: C20:PriorityQueue4.cpp
- // From Thinking in C++, 2nd Edition
- // Available at http://www.BruceEckel.com
- // (c) Bruce Eckel 1999
- // Copyright notice in Copyright.txt
- // Manipulating the underlying implementation
- #include <iostream>
- #include <queue>
- #include <cstdlib>
- #include <ctime>
- using namespace std;
-
- class PQI : public priority_queue<int> {
- public:
- vector<int>& impl() { return c; }
- };
-
- int main() {
- PQI pqi;
- srand(time(0));
- for(int i = 0; i < 100; i++)
- pqi.push(rand() % 25);
- copy(pqi.impl().begin(), pqi.impl().end(),
- ostream_iterator<int>(cout, " "));
- cout << endl;
- while(!pqi.empty()) {
- cout << pqi.top() << ' ';
- pqi.pop();
- }
- } ///:~
-